home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / ded / bcopy.c < prev    next >
Encoding:
Text File  |  1984-04-25  |  110 b   |  9 lines

  1. bcopy(from, to, len)
  2. register char *from, *to;
  3. register int len;
  4. {
  5.  
  6.     while (len--)
  7.         *to++ = *from++;
  8. }
  9.